home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / a_to_d / dbplus2 / demoproj.dpr < prev    next >
Text File  |  1996-09-15  |  308b  |  16 lines

  1. program Demoproj;
  2.  
  3. uses
  4.   Forms,
  5.   Demomain in 'DEMOMAIN.PAS' {Form1},
  6.   Subcat in 'SUBCAT.PAS' {SubCatDlg};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'TDBLookUpComboPlus Demo ';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TSubCatDlg, SubCatDlg);
  14.   Application.Run;
  15. end.
  16.